home *** CD-ROM | disk | FTP | other *** search
/ Mac Action 1996 January / mac-action-07.iso / mac / Sound ’n’ Vision / CD List / CD List.c next >
Encoding:
C/C++ Source or Header  |  1994-06-29  |  15.9 KB  |  618 lines  |  [TEXT/KAHL]

  1. /********************************/
  2. /* CD List by Tim Bendel        */
  3. /* June 9, 1994                 */
  4. /*                              */
  5. /* Note that this program was   */
  6. /* written quickly without      */
  7. /* regard for error checking,   */
  8. /* style, technique, form, etc. */
  9. /* Feel free to change the      */
  10. /* program.  If you do so,      */
  11. /* please email me at:          */
  12. /* TBendel@aol.com              */
  13. /********************************/
  14.  
  15.  
  16. /* This was written and tested on a PowerMac 6100/60 AV with an internal CD Rom drive */
  17.  
  18.  
  19. #include <Dialogs.h>
  20. #include <Quickdraw.h>
  21.  
  22.  
  23. #define ORIG_FILE         0
  24. #define USER_FILE         1
  25. #define BASE_RES_ID       128
  26. #define NIL               0L
  27. #define MOVE_TO_FRONT     -1L
  28. #define REMOVE_ALL_EVENTS 0
  29.  
  30. #define MIN_SLEEP         0L
  31. #define NIL_MOUSE_REGION  0L  
  32.  
  33. #define WNE_TRAP_NUM      0x60
  34. #define UNIMPL_TRAP_NUM   0x9F
  35.  
  36.  
  37. #define PREF_ITEM         8
  38. #define CLEAR_ITEM        6
  39. #define PASTE_ITEM        5
  40. #define COPY_ITEM         4
  41. #define DELETE_ITEM       2
  42. #define TEST_ITEM         3
  43. #define CLOSE_ITEM        5
  44. #define GRID_ITEM         6
  45. #define NEW_ITEM          1
  46. #define EDIT_ITEM         1
  47. #define ABORT_ITEM        2
  48. #define SAVE_ITEM         4
  49. #define QUIT_ITEM         2
  50. #define ABOUT_ITEM        1
  51. #define YES               1
  52. #define NO                0
  53. #define DONE              3
  54. #define SAVE_BUTTON       11
  55. #define CANCEL_BUTTON     12
  56. #define ON                1
  57. #define OFF               0
  58. #define NO_FLAGS          0L
  59. #define NOT_A_NORMAL_MENU -1
  60. #define APPLE_MENU_ID     128
  61. #define FILE_MENU_ID      129
  62. #define EDIT_MENU_ID      130
  63.  
  64. #define ABOUT_ALERT       400
  65.  
  66. typedef struct cdstruct {
  67.  
  68.    int idnum;
  69.    char title[40];
  70.    };
  71.  
  72.  
  73. typedef struct CDStruct {
  74.    
  75.    char           title[40];
  76.    short          numsongs;
  77.    char           song[30][40];
  78.    };
  79.  
  80. pascal   OSErr  SetDialogDefaultItem(DialogPtr theDialog, short newItem)
  81.      = { 0x303C, 0x0304, 0xAA68};
  82. pascal   OSErr  SetDialogCancelItem(DialogPtr theDialog, short newItem)
  83.      =  {0x303C, 0x0305, 0xAA68};
  84. pascal   OSErr  SetDialogTracksCursor(DialogPtr theDialog, Boolean tracks)
  85.      =  {0x303C, 0x0306, 0xAA68};
  86.  
  87.  
  88. WindowPtr    listwind;
  89. DialogPtr    aboutdlg,newd;
  90. Boolean      gDone,gWNEImplemented;
  91. EventRecord  gTheEvent;
  92. MenuHandle   AppleMenu,FileMenu,EditMenu;
  93. struct CDStruct acd;
  94. struct cdstruct cds[200];
  95.  
  96.  
  97. main() {
  98.    
  99.    GDHandle curdev;
  100.    int pixdepth;
  101.    GrafPtr oldport;
  102.    Handle song;
  103.    Rect temprect;
  104.    
  105.    MaxApplZone();
  106.    ToolBoxInit();
  107.  
  108.        
  109.    if (IsColor()) {
  110.       curdev = GetDeviceList();
  111.       WindowInit();
  112.       MenuBarInit();
  113.       DialogInit();
  114.             
  115.       FlushEvents( everyEvent, REMOVE_ALL_EVENTS);
  116.       MainLoop();      
  117.       
  118.       }
  119.    else {
  120.       StopAlert(130,NIL);
  121.       ExitToShell();
  122.       }
  123.    }
  124.  
  125. IsColor() {
  126.  
  127.    SysEnvRec mySE;
  128.    
  129.    SysEnvirons(2,&mySE);
  130.    if (!mySE.hasColorQD)
  131.       return(FALSE);
  132.    else
  133.       return(NGetTrapAddress(0xAB03,ToolTrap)!=NGetTrapAddress(0xA89F,ToolTrap));
  134.    }
  135.  
  136. GetPixelDepth(GDHandle thedevice) {
  137.  
  138.    PixMapHandle screenPMapH;
  139.    int          pixeldepth;
  140.    
  141.    screenPMapH = (**thedevice).gdPMap;
  142.    pixeldepth = (**screenPMapH).pixelSize;
  143.    return(pixeldepth);
  144.    }
  145.  
  146. DoAlert(Str255 s) {
  147.  
  148.    ParamText(s,"/p","/p","/p");
  149.    NoteAlert(128,0L);
  150.    }   
  151.  
  152. DoAlert2(Str255 s) {
  153.  
  154.    ParamText("/p",s,"/p","/p");
  155.    NoteAlert(129,0L);
  156.    }   
  157.  
  158. /***********************/ 
  159. /* Initializes toolbox */
  160. /***********************/   
  161. ToolBoxInit() {
  162.  
  163.    InitGraf( &thePort );
  164.    InitFonts();
  165.    FlushEvents( everyEvent, REMOVE_ALL_EVENTS);
  166.    InitWindows();
  167.    InitMenus();
  168.    TEInit();
  169.    InitDialogs( NIL );
  170.    InitCursor();
  171.    } 
  172.  
  173. /********************/ 
  174. /* Gets game window */
  175. /********************/   
  176. WindowInit() {
  177.    
  178.    listwind = GetNewWindow(128,NIL,0);
  179.    SetPort(listwind);
  180.    }
  181.  
  182. /***********************/ 
  183. /* Initializes MenuBar */
  184. /***********************/      
  185. MenuBarInit() {
  186.  
  187.    Handle myMenuBar;
  188.    
  189.    myMenuBar = GetNewMBar(BASE_RES_ID);
  190.    SetMenuBar( myMenuBar);
  191.    AppleMenu = GetMHandle(APPLE_MENU_ID); 
  192.    FileMenu = GetMHandle(FILE_MENU_ID);
  193.    EditMenu = GetMHandle(EDIT_MENU_ID);
  194.    AddResMenu(AppleMenu,'DRVR');
  195.    DrawMenuBar();   
  196.    DisableItem(EditMenu,CLEAR_ITEM);                            
  197.    DisableItem(EditMenu,PASTE_ITEM);                            
  198.    DisableItem(EditMenu,COPY_ITEM);                            
  199.    }
  200.  
  201. /*******************/
  202. /* Sets Up Dialogs */
  203. /*******************/
  204. DialogInit() {
  205.       
  206.    aboutdlg = GetNewDialog(134,NIL,0); 
  207.    }      
  208.  
  209. /**************************/
  210. /* Loops until user quits */
  211. /**************************/
  212. MainLoop() {  
  213.    int a,x,y,dx,dy;
  214.    Str255 ts,myString;
  215.    int itemhit,itemtype;
  216.    Rect itemrect;
  217.    Handle itemhandle;
  218.    int temp; 
  219.    GrafPtr    savePort;
  220.    
  221.    gDone = FALSE;
  222.    gWNEImplemented = (NGetTrapAddress(WNE_TRAP_NUM, ToolTrap) !=
  223.                       NGetTrapAddress(UNIMPL_TRAP_NUM, ToolTrap));
  224.    
  225.    while(gDone == FALSE) {       
  226.  
  227.       /********************************/
  228.       /* Mac events are taken care of */
  229.       /********************************/
  230.       HandleEvent(); 
  231.       }
  232.    }
  233.    
  234.  
  235. HandleEvent() {
  236.  
  237.    char theChar;
  238.    int  itemhit;
  239.    
  240.     HiliteMenu(0);
  241.    /***********************/   
  242.    /* Gets the next event */
  243.    /***********************/   
  244.    if (gWNEImplemented) {
  245.       WaitNextEvent(everyEvent,&gTheEvent,MIN_SLEEP,NIL_MOUSE_REGION);
  246.       }   
  247.     else {
  248.       SystemTask();
  249.       GetNextEvent(everyEvent,&gTheEvent);
  250.       }
  251.    
  252.     /*****************************************************/
  253.     /* When an event happens, the proper action is taken */
  254.     /*****************************************************/
  255.     switch(gTheEvent.what) {
  256.    
  257.       case nullEvent: HandleNull();
  258.                       break;
  259.                       
  260.       case mouseDown: 
  261.                       HandleMouseDown();
  262.                       break;
  263.                       
  264.       case keyDown:   
  265.       case autoKey:   theChar = gTheEvent.message & charCodeMask;
  266.                       if ((gTheEvent.modifiers & cmdKey) != 0)
  267.                          HandleMenuChoice(MenuKey(theChar));
  268.                        break;
  269.                       
  270.       case updateEvt: BeginUpdate((WindowPtr)gTheEvent.message);
  271.                       if ((WindowPtr)gTheEvent.message == listwind) {
  272.                         }
  273.   
  274.                       EndUpdate((WindowPtr)gTheEvent.message); 
  275.                       break;
  276.       case app4Evt:
  277.                       break;
  278.    }
  279.                       
  280.                       
  281.  HandleMouseDown() {
  282.  
  283.     WindowPtr  whichWindow;
  284.     short      thePart;
  285.     long       menuChoice,windSize;
  286.     Point      thePoint;
  287.     
  288.     thePart = FindWindow(gTheEvent.where, &whichWindow);
  289.     /*********************************************************/
  290.     /* Takes action based on where the mouse is when pressed */
  291.     /*********************************************************/
  292.     switch(thePart) {
  293.     
  294.        case inMenuBar:    menuChoice = MenuSelect(gTheEvent.where);
  295.                           HandleMenuChoice(menuChoice);
  296.                           break;
  297.                        
  298.        case inSysWindow : SystemClick(&gTheEvent,whichWindow);
  299.                           break;
  300.        case inContent   : break;
  301.        }
  302.        
  303.     }
  304.     
  305.  /****************************/
  306.  /* Controls pull-down menus */
  307.  /****************************/
  308.  HandleMenuChoice(menuChoice) 
  309.     long int menuChoice; {
  310.     
  311.     int theMenu;
  312.     int theItem;
  313.     
  314.     if (menuChoice != 0) {
  315.        
  316.        theMenu = HiWord(menuChoice);
  317.        theItem = LoWord(menuChoice);
  318.        
  319.        switch(theMenu) {
  320.           case APPLE_MENU_ID : HandleAppleChoice(theItem);
  321.                                break;
  322.      
  323.           case FILE_MENU_ID  : HandleFileChoice(theItem);
  324.                                break;
  325.      
  326.  
  327.           case EDIT_MENU_ID  : HandleEditChoice(theItem);
  328.                                break;
  329.      
  330.  
  331.           default :    
  332.                                HandleFileChoice(theItem);
  333.                                break;
  334.           }
  335.           
  336.           HiliteMenu(0);
  337.        }
  338.     }
  339.     
  340. /********************************/
  341. /* Takes care of the apple menu */
  342. /********************************/
  343.  HandleAppleChoice(theItem)
  344.     int theItem; {
  345.     
  346.     Str255     accName;
  347.     int        accNumber,itemhit;
  348.     short int  itemNumber;
  349.     GrafPtr    savePort;
  350.       
  351.     /***********************************************************/
  352.     /* Displays the About dialog or handles the desk accessory */
  353.     /***********************************************************/
  354.     switch(theItem) {
  355.               
  356.        case ABOUT_ITEM :
  357.                          GetPort(&savePort);
  358.                          ShowWindow(aboutdlg);
  359.                          SelectWindow(aboutdlg);                         
  360.                          SetDialogDefaultItem(aboutdlg,1);
  361.                          ModalDialog(NULL,&itemhit);
  362.                          HideWindow(aboutdlg);   
  363.                          SetPort(savePort);
  364.                          break;
  365.                             
  366.        default         : 
  367.                          GetPort(&savePort);
  368.                          GetItem(AppleMenu, theItem,accName);
  369.                          OpenDeskAcc(accName);
  370.                          SetPort(savePort);
  371.                          break;
  372.        }
  373.     }
  374.  
  375.  
  376.  
  377.  HandleFileChoice(theItem)
  378.     int theItem; {
  379.     
  380.     DialogPtr quitd,dialog;
  381.     Handle soundh;
  382.     int itemhit;
  383.     int a;
  384.     GrafPtr savePort;
  385.     StandardFileReply    *filename;
  386.            
  387.     switch(theItem) {
  388.        
  389.        case QUIT_ITEM  :     
  390.                          quitd = GetNewDialog(132,NIL,0);
  391.                          GetPort(&savePort);
  392.                          ShowWindow(quitd);
  393.                          SelectWindow(quitd);
  394.                          SetPort(quitd);
  395.                          SetDialogDefaultItem(quitd,1);
  396.                          SetDialogCancelItem(quitd,2);
  397.                          ModalDialog(NULL,&itemhit);
  398.    
  399.                          if (itemhit == 1)     
  400.                             gDone = TRUE;
  401.                          
  402.                          HideWindow(quitd);   
  403.                          DisposDialog(quitd);
  404.                          SetPort(savePort); 
  405.                          break;
  406.        
  407.       case NEW_ITEM   :  HandleNewChoice();
  408.                          break; 
  409.        }   
  410.     }
  411.      
  412. HandleEditChoice(theItem)
  413.     int theItem; { }
  414.    
  415. HandleNull() { }
  416.                   
  417.    
  418.  
  419. HandleNewChoice() {
  420.    
  421.  
  422.    Str255                   rName,theString;
  423.    long                     iErr,bufsize,bsize;
  424.    short                    iFileRef,iCnt,rID,index,fRefNum;
  425.    int                      a,i; 
  426.    Handle                   hRsrc,prog;
  427.    ResType                  thetype,rType,ptype;
  428.    char                     *thenum;
  429.    Point                    thepoint;
  430.    SFTypeList               typeList;
  431.    SFReply                  reply,reply2;
  432.    
  433.    /******************/
  434.    /* Get File Names */
  435.    /******************/
  436.    typeList[0] = 'ProG';
  437.    thepoint.h = thepoint.v = 100;
  438.    SFGetFile(thepoint, NIL, NIL, 1, typeList, NIL, &reply);
  439.    if (reply.good == TRUE) {
  440.       SFPutFile(thepoint, NIL, "\pMy CD List", NIL, &reply2);
  441.       if (reply2.good == TRUE) {
  442.  
  443.          /******************/
  444.          /* Open List File */
  445.          /******************/
  446.          iErr = Create( reply2.fName, reply2.vRefNum, 'MSWD', 'TEXT');
  447.          iErr = FSOpen ( reply2.fName, reply2.vRefNum, &fRefNum );
  448.            if (iErr == 0) {  
  449.             bufsize = sizeof(Str255);             
  450.             iErr = SetFPos ( fRefNum, fsFromStart,0);                            
  451.        
  452.             /******************************/
  453.             /* Get Resource as Read Only  */
  454.             /******************************/
  455.             thetype = 'STR#';
  456.             ptype = 'ProG';
  457.             iFileRef = OpenRFPerm(reply.fName,reply.vRefNum,1);
  458.             iCnt = Count1Resources(thetype);
  459.             
  460.             /*********************/
  461.             /* Get Song Res ID's */
  462.             /*********************/
  463.             for (a=1;a<=iCnt;++a) {
  464.                hRsrc = Get1IndResource(thetype, a); 
  465.                GetResInfo(hRsrc, &rID, &rType, rName);
  466.                cds[a - 1].idnum = rID;
  467.                clearstring(theString);            
  468.                GetIndString(theString, rID, 1);
  469.                copytostring(theString,cds[a - 1].title);
  470.                }
  471.             
  472.             /*********************/
  473.             /* Sort CD Titles    */
  474.             /*********************/
  475.             stripper(iCnt);
  476.             bubblesort(iCnt);
  477.               
  478.             /*******************/
  479.             /* Get Song Titles */
  480.             /*******************/
  481.             for (a=1;a<=iCnt;++a) {
  482.                prog = Get1Resource(ptype, cds[a -1].idnum);
  483.                HLock(prog);
  484.                thenum = *prog;
  485.                index = thenum[1]; 
  486.                HUnlock(prog);
  487.                acd.numsongs = index;
  488.                clearstring(theString);            
  489.                GetIndString(theString, cds[a -1].idnum, 1);
  490.                copytostring(theString,acd.title);
  491.                
  492.                for (i = 2;i<=index + 1;++i) {
  493.                   clearstring(theString);            
  494.                   GetIndString(theString, cds[a -1].idnum, i); 
  495.                   copytostring(theString,acd.song[i - 1]);
  496.                   }                               
  497.                
  498.                
  499.                /************************/
  500.                /* Write titles to file */
  501.                /************************/
  502.                bufsize = 40 * sizeof(char);
  503.                iErr = FSWrite( fRefNum, &bufsize, &acd.title);                                                 
  504.                clearstring(theString);
  505.                copytostring(theString,acd.song[0]);
  506.                 for (i = 0;i <= acd.numsongs;++i)
  507.                   iErr = FSWrite( fRefNum, &bufsize, &acd.song[i]);                                                   
  508.                 for (i = 0;i <= 2;++i)
  509.                   iErr = FSWrite( fRefNum, &bufsize, &acd.song[0]);                                                   
  510.                }
  511.             FSClose(fRefNum);
  512.             CloseResFile(iFileRef);
  513.             }
  514.          else {
  515.             DoAlert2("\pError Saving List");
  516.             iErr = FSClose(fRefNum);
  517.             }
  518.          }
  519.       else {
  520.          DoAlert2("\pError Opening File");
  521.          iErr = FSClose(fRefNum);
  522.          }
  523.       }
  524.    }
  525.  
  526.          
  527.  
  528.  
  529. clearstring(Str255 dest) {
  530.  
  531.    int a;
  532.    
  533.    for (a = 0;a < 255;++a)
  534.       dest[a] = ' ';
  535.   }
  536.  
  537. copytostring(Str255 source,char *dest) {
  538.  
  539.    int a;
  540.    
  541.    for (a = 0;a < 40;++a)
  542.       dest[a] = ' ';
  543.       
  544.    for (a = 0;a < 40;++a)
  545.       dest[a] = source[(a + 1)];
  546.    dest[39] = 13;
  547.    }
  548.  
  549.  
  550. /*************************/
  551. /* Used in alphabetizing */
  552. /*************************/
  553. stripper(int MAXNUM) {
  554.    int a,b;
  555.  
  556.    for (a=0;a < MAXNUM;++a) {
  557.       for (b = 0;b < 40;++b)
  558.      
  559.      /*************************************/
  560.      /* Changes all letters to lower-case */
  561.      /*************************************/
  562.      if ((cds[a].title[b] >= 'A') && (cds[a].title[b] <= 'Z'))
  563.         cds[a].title[b] += 32;
  564.       
  565.       /***************************************/
  566.       /* Takes off the word 'the' if present */
  567.       /***************************************/
  568.       if ((cds[a].title[0] == 't') &&
  569.       (cds[a].title[1] == 'h') &&
  570.       (cds[a].title[2] == 'e')) {
  571.       for (b = 0;b < 35;++b)
  572.          cds[a].title[b] = cds[a].title[b + 4];
  573.       cds[a].title[36] = ' ';
  574.       cds[a].title[37] = ' ';
  575.       cds[a].title[38] = ' ';
  576.        /*      cds[a].title[29] = 13;     */
  577.       }
  578.       }
  579.    }
  580.  
  581. /*******************************/
  582. /* Simple Buublesort alogrithm */
  583. /*******************************/
  584. bubblesort(int MAXNUM) {
  585.  
  586.    int i,j;
  587.    struct cdstruct temp;
  588.  
  589.    for(i = 0;i < MAXNUM;++i) {
  590.       for (j = (MAXNUM - 1);j >= i;--j) {
  591.      if(alphabet(i,j) == 1) {
  592.         temp = cds[i];
  593.         cds[i] = cds[j];
  594.         cds[j] = temp;
  595.         }
  596.      }
  597.       }
  598.    }
  599.  
  600.  
  601. /*****************************/ 
  602. /* Checks alphabetical order */
  603. /*****************************/ 
  604. alphabet(int i,int j) {
  605.    int a,b;
  606.  
  607.    a = 0;
  608.  
  609.    while ((cds[i].title[a] == cds[j].title[a])  && (a < 29))
  610.       ++a;
  611.  
  612.    if (cds[i].title[a] > cds[j].title[a])
  613.       return(1);
  614.    else
  615.       return(0);
  616.  
  617.    }